home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Games of Daze
/
Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso
/
x2ftp
/
msdos
/
mxlibs
/
smixw122
/
makefile
< prev
next >
Wrap
Makefile
|
1995-05-26
|
572b
|
26 lines
COPT=-mf -oneatx -zp4 -3r
LOPT=-mf -oneatx -zp4 -3r
EXE=mixtest.exe
OBJ=smix.obj detect.obj mixtest.obj lowmem.obj
# Do a complete rebuild if the makefile has changed
MAK=makefile
$(EXE) : $(OBJ) $(MAK)
wcl386 $(OBJ) /fe=$(EXE) $(LOPT)
detect.obj : detect.c $(MAK)
wcc386 detect.c $(COPT)
lowmem.obj : lowmem.c $(MAK)
wcc386 lowmem.c $(COPT)
# smix.c MUST be compiled with the -zu compiler switch
smix.obj : smix.c lowmem.h $(MAK)
wcc386 smix.c $(COPT) -zu
mixtest.obj : mixtest.c smix.h detect.h $(MAK)
wcc386 mixtest.c $(COPT)